Skip to content

Instantly share code, notes, and snippets.

@furaar
furaar / README.md
Created August 2, 2024 15:12
Step-by-step guide to install AMD ROCm on Ubuntu with RX6600 GPU. Includes setting up Ollama and running Llama 3.1 model. Perfect for machine learning and GPU-heavy tasks!

AMD ROCm Installation Guide on RX6600 + Ollama

System Information

            .-/+oossssoo+/-.               x@furaar 
        `:+ssssssssssssssssss+:`           -------- 
      -+ssssssssssssssssssyyssss+-         OS: Ubuntu 22.04.4 LTS x86_64 
    .ossssssssssssssssssdMMMNysssso.       Host: redacted 
   /ssssssssssshdmmNNmmyNMMMMhssssss/      Kernel: 6.5.0-45-generic 
  +ssssssssshmydMMMMMMMNddddyssssssss+     Uptime: 2 hours, 40 mins 
@chrismdp
chrismdp / skill.md
Created January 16, 2026 11:36
Today in Claude Code - A skill to generate daily summaries of your Claude Code activity
name description
today-in-claude-code
Generate a summary of today's Claude Code activity including token usage and tasks accomplished.

Today in Claude Code

Generate a comprehensive daily summary of Claude Code usage.

Process

@bkw777
bkw777 / Quartus_13_on_Ubuntu_23.md
Last active January 19, 2026 18:13
Quartus 13.0 & ModelSim on Ubuntu 24
@stellasphere
stellasphere / descriptions.json
Last active January 19, 2026 18:13
WMO weather interpretation code descriptions (& images)
{
"0":{
"day":{
"description":"Sunny",
"image":"http://openweathermap.org/img/wn/01d@2x.png"
},
"night":{
"description":"Clear",
"image":"http://openweathermap.org/img/wn/01n@2x.png"
}
@jacobparis
jacobparis / sandbox.md
Created January 17, 2026 21:30
run claude in a vercel sandbox overnight

sandbox.sh

Run Claude in an isolated Vercel Sandbox with full git access.

It uses the sandbox ID (sbx_asdfasdfasdf) as the branch name, so it's safe to push and then you can get your changes by pulling them from that branch

Examples

Test permissions are set up properly

@tnarla
tnarla / page.tsx
Created February 2, 2024 20:35
Valentine website
"use client";
import { useState } from "react";
export default function Page() {
const [noCount, setNoCount] = useState(0);
const [yesPressed, setYesPressed] = useState(false);
const yesButtonSize = noCount * 20 + 16;
const handleNoClick = () => {
setNoCount(noCount + 1);
@pambrose
pambrose / directions.md
Last active January 19, 2026 18:10
Brownfield OpenSpec and Claude Code Usage
  • Install Claude Code as described here
  • Pay for some Anthropic LLM tokens (Start with $20.00 worth)
  • Install OpenSpec as described here
  • Clone the repo of your choice
  • Open the repo in your IDE of choice
  • Review this advice from Gemini
  • Open a terminal window and type: claude
  • Then type /init
  • Close the window runnning Claude (so it can see the claude commands created in the next step)
  • Open a terminal window and type: openspec init
@ih2502mk
ih2502mk / list.md
Last active January 19, 2026 18:10
Quantopian Lectures Saved
@reynaldichernando
reynaldichernando / cors-proxies.md
Last active January 19, 2026 18:00
CORS Proxies (Updated 2025)

CORS Proxies (Updated 2025)

Free

Proxy (A-Z) Methods Status Code Override Headers Exposed Headers Follow Redirect Timeout Size Limit Rate Limit
allorigins ✅ All ❌ (Always 200) 20/min
cloudflare-cors-anywhere ✅ All ✅ Mirror
codetabs ❌ (only GET) ❌ (Always 200) 625KB 5/sec
cors-anywhere (heroku) ✅ All ✅ Mirror ✅ (max. 5) 50/hour
ls - The most frequently used command in Linux to list directories
pwd - Print working directory command in Linux
cd - Linux command to navigate through directories
mkdir - Command used to create directories in Linux
mv - Move or rename files in Linux
cp - Similar usage as mv but for copying files in Linux
rm - Delete files or directories
touch - Create blank/empty files
ln - Create symbolic links (shortcuts) to other files
cat - Display file contents on the terminal